Skip to main content

Get Lead Trader Historical Lead Order

Type: GET

Description: /v1/copy-trade-order/public/copy-trade/order/leader-order-history

Limit Flow Rules

2/s/ip

Parameters

NameTypeMandatoryDefaultDescription
leaderAccountIdnumberYesLeader account id
symbolstringNoTrading pair, e.g. btc_usdt. If null, defaults to all
directionstringNoNEXTQuery direction. PREV - previous page, NEXT - next page
limitnumberNo10Number of pages (1-100)
idobjectNoStart ID, e.g. 6216559590087220004

Response Example

Response
{
"rc": 0,
"mc": "string",
"ma": [{}],
"result": [
{
"id": "string", // id
"orderId": "string", // order id
"symbol": "string", // symbol
"buySize": 0, // buy size
"buyTime": 0, // buy time
"buyPrice": 0, // buy price
"sellSize": 0, // sell size
"sellTime": 0, // sell time
"sellPrice": 0, // sell price
"profit": 0, // profit
"profitRate": 0, // profit rate
"triggerProfitPrice": 0, // take profit price
"triggerStopPrice": 0, // stop loss price
"followCount": 0 // follow count
}
]
}